home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-26 | 2.9 KB | 83 lines | [TEXT/ScoM] |
- PROGRAMMING ARPEGGIATORS
-
- >Hi, Im just getting my teeth into Symbolic Composer. I would like to set
- >up a program that plays variations of an arpeggiated one instrument
- >solo, (to sound a bit like the band Tangerine Dream). I want it to
- >create a long line of arpeggiated variations that I can put into
- >performer and link all the ones that sound good up. Any ideas?
-
- Harmony theory functions and overtone tonalities have suitable properties.
- Here is a simple sequencer. Use different lengths in symbols and velocities,
- Klaus Schulze has been know of his techniques of maximizing the possibilities
- of 16 beat sequencers by using multiple such sequencers synced to each
- other and then setting the limit of the sequence differently. When melody
- uses 16 elements and velocity only 15 then it will take 16x15 until the
- total resulting sequence will repeat. When you define a synth setup
- you can also use filter and other synth-specific controllers.
-
- ;"The Arpeggiator" by Claudio Martini.
-
- ;This is a multiple arpeggiator for more instruments (six in this case).
- ;by substituting symbols, tonalities and other parameters you can easily adapt it
- ;to your demands.
-
-
-
- (setq symbols '(a b c d e f g h
- l i n m p o r q
- s q r o p m n i
- l h g f e d c b))
-
- (def-symbol
- kalimba symbols
- vibes symbols
- synth symbols
- el.piano symbols
- harp symbols
- marimba symbols)
-
- (def-length
- default '1/32)
-
- (def-velocity
- default '(40 45 50 55 60 65 70 75 70 65 60 55 50 45 40))
-
- (def-tempo 105)
-
- (def-channel
- kalimba 2
- vibes 3
- synth 12
- el.piano 13
- harp 9
- marimba 16
- )
-
- (def-program nil
- kalimba 53
- vibes 37
- synth 16
- el.piano 50
- harp 39
- marimba 46
- )
-
- (setq tonals (activate-tonality (pentatonic c 5) (hirajoshi g 5)
- (pelog c 5) (messiaen1 c 5)
- (overtone c 6) (harmonic-minor c 5)
- (messiaen2 c 5) (enigmatic c 6)
- (lydian f 5) (phrygian e 5)
- (mixolydian b& 4) (lydian d& 5)))
-
- (compile-song-p "ccl;output:" 1/1 "Arpeggiator"
- ; BARS |---|---|---|---|---|---|---|---|---|---|---|---|
- changes tonals " . . . . . . . . . . . . . . . . . . . . . . . "
- kalimba changes "--- --- --- --- --- --- --- --- --- --- --- --- "
- vibes changes " --- --- --- --- --- --- --- --- --- --- --- ---"
- synth changes "- --- --- --- --- --- --- --- --- --- --- --- --"
- el.piano changes "-- --- --- --- --- --- --- --- --- --- --- --- -"
- harp changes "--- --- --- --- --- --- --- --- --- --- --- --- "
- marimba changes " --- --- --- --- --- --- --- --- --- --- --- ---"
- )
-
-